diff options
Diffstat (limited to 'examples/hackernews/src/pages/users/[id].astro')
-rw-r--r-- | examples/hackernews/src/pages/users/[id].astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hackernews/src/pages/users/[id].astro b/examples/hackernews/src/pages/users/[id].astro index 9b43c6958..e56085992 100644 --- a/examples/hackernews/src/pages/users/[id].astro +++ b/examples/hackernews/src/pages/users/[id].astro @@ -25,7 +25,7 @@ const user = (await fetchAPI(`user/${id}`)) as IUser; {user.karma} </li> <Show when={user.about}> - <li set:html={user.about} class="about"></li>{' '} + <li set:html={user.about} class="about" />{' '} </Show> </ul> <p> |